home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / Orientation.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-12-16  |  351 b   |  11 lines

  1. package symantec.itools.awt;
  2.  
  3. interface Orientation {
  4.    int ORIENTATION_VERTICAL = 0;
  5.    int ORIENTATION_HORIZONTAL = 1;
  6.  
  7.    void setOrientation(int var1);
  8.  
  9.    int getOrientation();
  10. }
  11.